.center {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

.wrapper {
    display: flex;
    grid-gap: 1em;
    overflow: hidden;
    width: 55em;
}

.wrapper>.inner {
    display: flex;
    grid-gap: 1em;
    transition: all 1s ease-in-out;
}
.wrapper>.inner1 {
    display: flex;
    grid-gap: 1em;
    transition: all 1s ease-in-out;
}
.card {
    border-radius: 0.5em;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}

.card>img {
    border-top-right-radius: inherit;
    border-top-left-radius: inherit;
    display: block;
    width: 17.5em;
}



.card>.content {
    background: #0a2640;
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
    padding: 1em;
    text-align: center;
    height: 100%;
}

.card>.content>h1,
.card>.content>p {
    margin: 0.35em 0;
}

.card>.content>h1 {
    color: #fff;
    font-size: .7rem;
    line-height: 1;
}

.card>.content>p {
    color: #ccc;
    font-size: 0.5rem;
    font-weight: 300;
}

.map ,.map2{
    margin-top: 1em;
}


.map>button , .map2>button{
    all: unset;
    background: #11406c;
    cursor: pointer;
    margin: 0 0.125em;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-radius: 100%;
    height: 1em;
    width: 1em;
}

.map>button.active:after , .map2>button.active:after  {
    background: #001d38;
    content: "";
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    border-radius: 100%;
    height: 0.5em;
    width: 0.5em;
}
